home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / gnu / gnpltsrc.lha / makefile.amg < prev    next >
Makefile  |  1996-01-22  |  5KB  |  145 lines

  1. # Makefile for SAS/C 6.1 on the Amiga
  2. #
  3. # $Id: makefile.amg,v 1.19 1995/12/02 22:04:34 drd Exp $
  4. #
  5. #
  6.  
  7. CC = sc
  8.  
  9. # Remove 'MATH=IEEE' if you don't want to use the better Commodore
  10. # math-routines. If you do so, you'll have to change 'scmieee.lib'
  11. # to 'scm.lib' in the gnuplot and bf_test target lines below.
  12.  
  13. OFLAGS = opt
  14. DEFS   = def=AMIGA_SC_6_1 def=STRNICMP def=NOGAMMA def=PIPES
  15. COPTS  = idir=term data=f math=i ign=304+306 #noerrhigh #errrexx
  16. DEBUG  = # Will be dbg=sf when called with smake -f makefile.amg debug
  17. CFLAGS = $(COPTS) $(DEFS) $(OFLAGS) $(DEBUG)
  18. LNDBG  = # Will be addsym when called with smake -f makefile.amg debug
  19.  
  20. # The directories where gnuplot and gnuplot.gih go:
  21.  
  22. DEST     = C:
  23. HELPDEST = S:
  24.  
  25. # To simplify the handling of files that have grown so large that they
  26. # must be compiled with the code=far option, the rules below have been
  27. # set up. Now, if a file grows large, you only have to change its
  28. # extension from .o to .oo, and the file will be compiled correctly.
  29. # This must be done in the OBJS-variable below and in the corresponding 
  30. # dependency-rule near the end of the file.
  31.  
  32.  
  33. # Normal compilation rule
  34. .c.o:
  35.     $(CC) $(CFLAGS) objname=$@ $<
  36.  
  37. # Compilation rule for large files
  38. .c.oo:
  39.     $(CC) $(CFLAGS) code=f objname=$@ $<
  40.  
  41. OBJS = alloc.o amiga.o binary.o bitmap.o command.o contour.o datafile.o eval.o \
  42.        fit.o graph3d.o graphics.oo help.o hidden3d.o internal.o interpol.o \
  43.        matrix.o misc.o parse.o plot.o plot2d.o plot3d.o scanner.o set.o show.o \
  44.        specfun.o standard.o term.oo util.o util3d.o version.o
  45.  
  46. CSOURCE1 = alloc.c bf_test.c binary.c bitmap.c command.c set.c show.c 
  47. CSOURCE2 = help.c graphics.c graph3d.o internal.c 
  48. CSOURCE3 = misc.c eval.c parse.c plot.c plot2d.c plot3d.c scanner.c standard.c 
  49. CSOURCE4 = bitmap.c term.c util.c util3d.c version.c interpol.c fit.c matrix.c
  50. CSOURCE5 = term/ai.trm term/amiga.trm term/aed.trm term/atariaes.trm \
  51.     term/atarivdi.trm term/bigfig.trm term/cgi.trm term/corel.trm \
  52.     term/djsvga.trm term/dumb.trm \
  53.     term/dxf.trm term/dxy.trm \
  54.     term/debug.trm term/eepic.trm term/epson.trm term/excl.trm \
  55.     term/fig.trm term/hp26.trm term/hp2648.trm term/hpgl.trm  \
  56.     term/hpljii.trm term/metafont.trm\
  57.     term/apollo.trm term/gpr.trm term/hppj.trm term/compact.c 
  58. CSOURCE6 = term/impcodes.h term/imagen.trm term/next.trm term/object.h \
  59.     term/iris4d.trm term/kyo.trm term/latex.trm term/mif.trm \
  60.     term/pbm.trm term/pc.trm 
  61. CSOURCE7 = term/post.trm term/pstricks.trm term/qms.trm term/regis.trm \
  62.     term/rgip.trm term/sun.trm\
  63.     term/t410x.trm term/tek.trm term/texdraw.trm\
  64.     term/tgif.trm term/tpic.trm \
  65.     term/unixpc.trm term/unixplot.trm \
  66.     term/v384.trm term/vws.trm term/x11.trm term/xlib.trm
  67. CSOURCE8 = contour.c specfun.c amiga.c
  68.  
  69.  
  70. all: gnuplot demo/bf_test
  71.  
  72. gnuplot: $(OBJS)
  73.     slink from lib:c.o $(OBJS) to gnuplot\
  74.     lib lib:scmieee.lib lib:scnb.lib $(LNDBG)
  75.  
  76. demo/bf_test: bf_test.o binary.o alloc.o
  77.     slink from lib:c.o bf_test.o binary.o alloc.o to demo/bf_test\
  78.     lib lib:scmieee.lib lib:scnb.lib
  79.     @echo "*N*NRun bf_test in demo subdirectory to make binary demo files*N"
  80.  
  81. docs: docs/gnuplot.doc docs/doc2gih docs/doc2tex docs/doc2ms docs/checkdoc
  82.     docs/doc2gih <docs/gnuplot.doc >docs/gnuplot.gih
  83.  
  84. docs/doc2gih: docs/doc2gih.c
  85.     $(CC) $(CFLAGS) idir= link to docs/doc2gih docs/doc2gih.c
  86.  
  87. docs/doc2tex: docs/doc2tex.c
  88.     $(CC) $(CFLAGS) idir= link to docs/doc2tex docs/doc2tex.c
  89.  
  90. docs/doc2ms: docs/doc2ms.c
  91.     $(CC) $(CFLAGS) idir= link to docs/doc2ms docs/doc2ms.c
  92.  
  93. docs/checkdoc: docs/checkdoc.c
  94.     $(CC) $(CFLAGS) idir= link to docs/checkdoc docs/checkdoc.c
  95.  
  96.  
  97. alloc.o: alloc.c plot.h
  98. amiga.o: amiga.c
  99. bf_test.o: bf_test.c
  100. binary.o: binary.c plot.h
  101. bitmap.o: bitmap.c bitmap.h plot.h
  102. command.o: command.c plot.h setshow.h help.h
  103. contour.o: contour.c plot.h
  104. datafile.o: datafile.c plot.h fnproto.h binary.h setshow.h stdfn.h
  105. eval.o: eval.c plot.h
  106. fit.o: fit.c fit.h matrix.h plot.h type.h
  107. graph3d.o: graph3d.c plot.h setshow.h
  108. graphics.oo: graphics.c plot.h setshow.h
  109. help.o: help.c plot.h help.h
  110. hidden3d.o: hidden3d.c plot.h setshow.h
  111. internal.o: internal.c plot.h
  112. interpol.o: interpol.c plot.h setshow.h
  113. matrix.o: matrix.c matrix.h fit.h type.h
  114. misc.o: misc.c plot.h setshow.h help.h
  115. parse.o: parse.c plot.h help.h
  116. plot.o: plot.c plot.h setshow.h
  117. plot2d.o: plot2d.c plot.h setshow.h fit.h binary.h help.h
  118. plot3d.o: plot3d.c plot.h setshow.h binary.h help.h
  119. scanner.o: scanner.c plot.h
  120. set.o: set.c plot.h setshow.h
  121. show.o: show.c plot.h setshow.h
  122. specfun.o: specfun.c plot.h
  123. standard.o: standard.c plot.h
  124. term.oo: term.c term.h plot.h setshow.h bitmap.h $(CSOURCE5) $(CSOURCE6) $(CSOURCE7)
  125. util.o: util.c plot.h
  126. util3d.o: util3d.c plot.h setshow.h
  127. version.o: version.c
  128.  
  129.  
  130. clean:
  131.     @-delete $(OBJS) bf_test.o binary.o quiet
  132.     @-delete docs/\#?.o docs/\#?.lnk quiet
  133.  
  134. veryclean: clean
  135.     @-delete demo/binary[1-3] fitdemo/fit.log quiet
  136.     @-delete bf_test demo/fit.log gnuplot docs/gnuplot.gih quiet
  137.     @-delete docs/doc2gih docs/doc2tex docs/doc2ms docs/checkdoc quiet
  138.  
  139. install: gnuplot docs/gnuplot.gih
  140.     copy docs/gnuplot.gih $(HELPDEST)
  141.     copy gnuplot $(DEST)
  142.  
  143. debug:
  144.     smake -f makefile.amg DEBUG=dbg=sf LNDBG=addsym OFLAGS= all
  145.